home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / thttpd_bug.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  79 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10286);
  10.  script_version ("$Revision: 1.20 $");
  11.  script_cve_id("CVE-1999-1456");
  12.  
  13.  name["english"] = "thttpd flaw";
  14.  name["francais"] = "ProblΦme de thttpd";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "
  18. The remote HTTP server allows an attacker to read arbitrary files
  19. on the remote web server, simply by adding a slash in front of its name. 
  20. Example:
  21.     GET //etc/passwd 
  22.  
  23. will return /etc/passwd.
  24.  
  25. Solution : upgrade your web server or change it.
  26. Risk factor : High";
  27.  
  28.  desc["francais"] = "Le serveur HTTP distant
  29. permet α un pirate de lire des fichiers
  30. arbitraires, en rajoutant simplement un
  31. slash au dΘbut de son nom.
  32. Exemple :
  33.     GET //etc/passwd
  34.     
  35. retournera /etc/passwd.
  36.  
  37. Solution : Mettez α jour votre server web ou changez-le.
  38. Facteur de risque : sΘrieux";
  39.  
  40.  script_description(english:desc["english"], francais:desc["francais"]);
  41.  
  42.  summary["english"] = "thttpd flaw";
  43.  summary["francais"] = "Trou de sΘcuritΘ de thttpd";
  44.  script_summary(english:summary["english"], francais:summary["francais"]);
  45.  
  46.  script_category(ACT_GATHER_INFO);
  47.  
  48.  
  49.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  50.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  51.  family["english"] = "Remote file access";
  52.  family["francais"] = "AccΦs aux fichiers distants";
  53.  script_family(english:family["english"], francais:family["francais"]);
  54.  script_dependencie("find_service.nes");
  55.  script_require_ports("Services/www", 80);
  56.  exit(0);
  57. }
  58.  
  59. #
  60. # The script code starts here
  61. #
  62.  
  63. include("http_func.inc");
  64.  
  65. port = get_http_port(default:80);
  66.  
  67. if(get_port_state(port))
  68. {
  69.  soc = http_open_socket(port);
  70.  if(soc)
  71.  {
  72.   buf = http_get(item:"//etc/passwd", port:port);
  73.   send(socket:soc, data:buf);
  74.   rep = http_recv(socket:soc);
  75.   if(egrep(pattern:".*root:.*:0:[01]:.*", string:rep))security_hole(port);
  76.   http_close_socket(soc);
  77.  }
  78. }
  79.